runtime.schedt.lastpoll (field)
10 uses
	runtime (current package)
		proc.go#L857: 	sched.lastpoll.Store(nanotime())
		proc.go#L3078: 	if sched.npidle.Load() == gomaxprocs-1 && sched.lastpoll.Load() != 0 {
		proc.go#L3358: 	if netpollinited() && netpollAnyWaiters() && sched.lastpoll.Load() != 0 {
		proc.go#L3577: 	if netpollinited() && (netpollAnyWaiters() || pollUntil != 0) && sched.lastpoll.Swap(0) != 0 {
		proc.go#L3603: 		sched.lastpoll.Store(now)
		proc.go#L3657: 	if netpollinited() && netpollAnyWaiters() && sched.lastpoll.Load() != 0 {
		proc.go#L3848: 	if sched.lastpoll.Load() == 0 {
		proc.go#L6143: 		lastpoll := sched.lastpoll.Load()
		proc.go#L6145: 			sched.lastpoll.CompareAndSwap(lastpoll, now)
		runtime2.go#L778: 	lastpoll  atomic.Int64 // time of last network poll, 0 if currently polling
|  | The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |